翻訳と辞書
Words near each other
・ Event correlation
・ Event cover
・ Event data
・ Event data recorder
・ Event dispatching thread
・ Event Driven Executive
・ Event flag
・ Event generator
・ Event horizon
・ Event Horizon (album)
・ Event horizon (disambiguation)
・ Event Horizon (film)
・ Event Horizon (sculpture)
・ Event Horizon Telescope
・ Event Horizons BBS
Event loop
・ Event management
・ Event Management (ITIL)
・ Event management software
・ Event Marketing Solutions
・ Event Mobile Tyres
・ Event monitoring
・ Event movie
・ Event of default
・ Event of Mubahala
・ Event partitioning
・ Event Processing Technical Society
・ Event Programming Language
・ Event reconstruction
・ Event relationship graph


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Event loop : ウィキペディア英語版
Event loop
In computer science, the event loop, message dispatcher, message loop, message pump, or run loop is a programming construct that waits for and dispatches events or messages in a program. It works by making a request to some internal or external "event provider" (which generally blocks the request until an event has arrived), and then it calls the relevant event handler ("dispatches the event"). The event-loop may be used in conjunction with a reactor, if the event provider follows the file interface, which can be selected or 'polled' (the Unix system call, not actual polling). The event loop almost always operates asynchronously with the message originator.
When the event loop forms the central control flow construct of a program, as it often does, it may be termed the main loop or main event loop. This title is appropriate because such an event loop is at the highest level of control within the program.
==Message passing==
Message pumps are said to 'pump' messages from the program's message queue (assigned and usually owned by the underlying operating system) into the program for processing. In the strictest sense, an event loop is one of the methods for implementing inter-process communication. In fact, message processing exists in many systems, including a kernel-level component of the Mach operating system. The event loop is a specific implementation technique of systems that use message passing.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Event loop」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.